home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr11 / wpjv1n4.zip / ROD.ZIP / RODSAPP.DEF < prev    next >
Text File  |  1993-01-28  |  575b  |  26 lines

  1. ;*********************************************************************
  2. ;*
  3. ;* rodsapp.def: module definition code file for DLL test
  4. ;*
  5. ;********************************************************************
  6.  
  7. NAME            RODSAPP
  8.  
  9. DESCRIPTION        'Program using DLL (c) R.E.Haxton 1993'
  10. EXETYPE            WINDOWS
  11. STUB            'WINSTUB.EXE'
  12.  
  13. CODE            PRELOAD MOVEABLE DISCARDABLE
  14. DATA            PRELOAD MOVEABLE MULTIPLE
  15.  
  16. SEGMENTS
  17.   Initialization_code        MOVEABLE    DISCARDABLE    PRELOAD
  18.    Resident_code        MOVEABLE            PRELOAD
  19.   
  20. HEAPSIZE        1024
  21. STACKSIZE        8192
  22.  
  23. EXPORTS            
  24.     MainWndProc    @1
  25.               
  26.